home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------------------------------------------*/
- /* */
- /* */
- /* ------------ Bit-Bucket Software <no-Inc> */
- /* \ 10001101 / Writers and Distributors of */
- /* \ 011110 / No-Cost<no-tm> Software. */
- /* \ 1011 / */
- /* ------ KopyRong (K) 1987. ALL RIGHTS REVERSED. */
- /* */
- /* */
- /* */
- /* */
- /* This software package is being distributed WITH FULL SOURCE CODE */
- /* with the following conditions: 1) If anything awful happens */
- /* because you use it (or don't use it), you accept full */
- /* responsibility; 2) you don't start making tons of voice calls to */
- /* the authors to complain or make suggestions about enhancements, */
- /* useful or otherwise; 3) you do not reuse this code in commercial */
- /* products without specific permission to do so from the authors; */
- /* 4) If you find any problems you send fixes to the authors for */
- /* inclusion in updates; 5) You find some way to express your */
- /* appreciation for this method of distribution, either by writing */
- /* code or application notes, or just sending along a "Thank You" */
- /* message. */
- /* */
- /* There is copyrighted code in this product. We either wrote it */
- /* ourselves or got permission to use it. Please don't force us to */
- /* pay a lawyer -- have some respect for our motives and don't abuse */
- /* this "license". */
- /* */
- /* */
- /*--------------------------------------------------------------------------*/
-
-
- /*
- $Header$
- */
-
- /*
- $Source$
-
- This file contains header information for the timer routines.
- */
-
-
- /*
- * $Log$
- */
-
-
- /* This union holds a long integer as a long, 2 ints or 4 chars */
-
- typedef union
- {
- long l;
- struct
- {
- unsigned char c[4];
- } c;
- struct
- {
- unsigned int i[2];
- } i;
- } TIMETYPE;
-
-
- #define PER_WEEK 60480000L
- #define PER_DAY 8640000L
- #define PER_HOUR 360000L
- #define PER_MINUTE 6000L
- #define PER_SECOND 100L
-
-